.about{
padding:120px 8% 80px;
background:#fff;
}

.about-container{
display:flex;
align-items:center;
gap:40px;
flex-wrap:wrap;
}

.about-image img{
width:90%;
max-width:450px;
border-radius:10px;
}
.about-image img:hover{
    box-shadow: 5px 5px rgb(245, 245, 245);
    transform: translateY(-5px)scale(1.01);
}
.about-text{
flex:1;
margin-left: 20px;

}

.about-text h1{
font-size:36px;
color:#3e2723;
margin-bottom:40px;
margin-left: 100px;
}


.about-text p{
margin-bottom:15px;
line-height:1.7;
}

.team{
padding:80px 8%;
text-align:center;
background:#f8f5f2;

}

.team h2{
font-size:32px;
margin-bottom:40px;
color:#3e2723;
}

.team-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;

}

.team-box{
background:#fff;
padding:30px;
width:280px;
border-radius:16px;
 transition:.3s;
 border: 1px solid #f4f4f4;
}
.team-box:hover{
     box-shadow: 5px 5px rgb(245, 245, 245);
   transform:translateY(-8px);
  
}

.team-box h3{
color:#6d4c41;
margin-bottom:10px;

}
/* FOOTER */

.footer {
  background: #2b1d1a;
  color: #ccc;
  padding: 40px 8% 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-section p {
  font-size: 15px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #ffcc80;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 13px;
}
